go/types.TypeList.list (method)

16 uses

	go/types (current package)
		infer.go#L626: 		for _, t := range t.TypeArgs().list() {
		infer.go#L779: 		for _, tpar := range t.TypeArgs().list() {
		named.go#L493: 		smap := makeSubstMap(origSig.RecvTypeParams().list(), t.inst.targs.list())
		named.go#L771: 	h := ctxt.instanceHash(orig, targs.list())
		named.go#L772: 	u := ctxt.update(h, orig, targs.list(), n) // block fixed point infinite instantiation
		named.go#L775: 	m := makeSubstMap(tpars.list(), targs.list())
		predicates.go#L477: 			xargs := x.TypeArgs().list()
		predicates.go#L478: 			yargs := y.TypeArgs().list()
		subst.go#L119: 		if targs := substList(t.TypeArgs().list(), subst.typ); targs != nil {
		subst.go#L261: 		if targs := substList(t.TypeArgs().list(), subst.typ); targs != nil {
		typelists.go#L43: func (l *TypeList) Len() int { return len(l.list()) }
		typelists.go#L51: func (l *TypeList) list() []Type {
		typestring.go#L303: 			w.typeList(t.inst.targs.list())
		typestring.go#L341: 		if list := t.targs.list(); len(list) != 0 {
		unify.go#L742: 			xargs := x.TypeArgs().list()
		unify.go#L743: 			yargs := y.TypeArgs().list()